function jokokm_flowimg_shortcode($atts, $content = null) { $atts = shortcode_atts( array( 'src' => '', 'align' => 'left', 'width' => '35', 'caption' => '' ), $atts ); $alignclass = ($atts['align'] == 'right') ? 'jokokm-right' : 'jokokm-left'; $html = '
'; $html .= '
'; $html .= ''; if (!empty($atts['caption'])) { $html .= '
'.$atts['caption'].'
'; } $html .= '
'; $html .= '
'.do_shortcode($content).'
'; $html .= '
'; return $html; } add_shortcode('flowimg', 'jokokm_flowimg_shortcode');